In This Topic
The items being created.
Syntax
'Declaration
<JsonConverterAttribute(C1.Web.Mvc.Serialization.PascalCaseJsonConverter)>
Public Property ItemsCreated As System.Collections.Generic.IList(Of T)
'Usage
Dim instance As BatchOperatingData(Of T)
Dim value As System.Collections.Generic.IList(Of T)
instance.ItemsCreated = value
value = instance.ItemsCreated
[JsonConverter(C1.Web.Mvc.Serialization.PascalCaseJsonConverter)]
public System.Collections.Generic.IList<T> ItemsCreated {get; set;}
public read-write property ItemsCreated: System.Collections.Generic.IList;
JsonConverterAttribute(C1.Web.Mvc.Serialization.PascalCaseJsonConverter)
public function get,set ItemsCreated : System.Collections.Generic.IList
[JsonConverter(C1.Web.Mvc.Serialization.PascalCaseJsonConverter)]
public: __property System.Collections.Generic.IList<T*>* get_ItemsCreated();
public: __property void set_ItemsCreated(
System.Collections.Generic.IList<T*>* value
);
[JsonConverter(C1.Web.Mvc.Serialization.PascalCaseJsonConverter)]
public:
property System.Collections.Generic.IList<T^>^ ItemsCreated {
System.Collections.Generic.IList<T^>^ get();
void set ( System.Collections.Generic.IList<T^>^ value);
}
See Also